github.com/klauspost/compress/zstd.blockDec.Last (field)

14 uses

	github.com/klauspost/compress/zstd (current package)
		blockdec.go#L106: 	Last bool
		blockdec.go#L116: 	return fmt.Sprintf("Steam Size: %d, Type: %v, Last: %t, Window: %d", len(b.data), b.Type, b.Last, b.WindowSize)
		blockdec.go#L136: 	b.Last = bh&1 != 0
		blockdec.go#L216: 	b.Last = true
		blockdec.go#L698: 	if b.Last {
		decoder.go#L539: 		if d.current.d.Last && d.frame.FrameContentSize != fcsUnknown && d.syncStream.decodedFrame != d.frame.FrameContentSize {
		decoder.go#L552: 			if d.current.d.Last {
		decoder.go#L564: 		d.syncStream.inFrame = !d.current.d.Last
		decoder.go#L796: 					println("fcs exceeded", block.Last, fcs, decodedFrame)
		decoder.go#L799: 				} else if block.Last && fcs != fcsUnknown && decodedFrame != fcs {
		decoder.go#L804: 						println("fcs ok", block.Last, fcs, decodedFrame)
		decoder.go#L908: 			if dec.Last && frame.HasCheckSum && err == nil {
		decoder.go#L926: 			last := dec.Last
		framedec.go#L390: 		if dec.Last {